Sublime Forum

Sync popup only on Windows

#1

Hey. I’m probably wrong in the way I sync my files:

// sublime text
symLink({
  src: h.cloud + 'appdata\\sublimetext3\\Packages',
  dest: h.homeAppData + 'AppData\\Roaming\\Sublime Text 3\\Packages',
  type: 'dir'
})

symLink({
  src: h.cloud + 'appdata\\sublimetext3\\Installed Packages',
  dest: h.homeAppData + 'AppData\\Roaming\\Sublime Text 3\\Installed Packages',
  type: 'dir'
})

but for the moment, it works perfectly for more than 1 year like this. And I’ve got this popup everytime I start ST on Windows. Never on macOS.

Could it be disabled by any chance?

0 Likes

#2

No, it can’t be disabled. It means you are loading a package that was installed on a different OS. Package Control does not want that to happen, because it could very likely lead to crashing and broken stuff. Different operating systems have different executable formats, and lots of packages include executables or shared libraries of one form or another.

Read https://packagecontrol.io/docs/syncing for info about how syncing should be done.

0 Likes

#3

Olkay, thank you. :slight_smile: I’ll do it.

0 Likes