Hi everyone,
I’m trying to sync my AWS S3 bucket with my local files using Sublime Text 3.
I have installed AWS CLI and configured with my S3 access keys.
To perform my desired oepration, I have created a file named s3sync.sublime-build which contains the following code:
{
"cmd":["aws","s3","sync","C:\\Users\\john\\OneDrive\\Documents\\folder\\sub 1\\sub 2","s3://s3url.com"]
}
I then created a file called test.txt
in my “sub 2” folder to test the sync/build system.
When I press “ctrl + B” I receive the following error:
[WinError 2] The system cannot find the file specified
[cmd: ['aws', 's3', 'sync','C:\\Users\\john\\OneDrive\\Documents\\folder\\sub 1\\sub 2', 's3://s3url.com']]
[dir: C:\Users\john\OneDrive\Documents\folder\sub 1\sub 2]
[path: C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\iCLS\;C:\Program Files\Intel\Intel(R) Management Engine Components\iCLS\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Users\john\AppData\Local\Programs\Python\Python37\Scripts\;C:\Users\john\AppData\Local\Programs\Python\Python37\;C:\Users\john\AppData\Local\Microsoft\WindowsApps]
[Finished]
Thank you so much for any insight you can provide.