You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Making a file executable then using copy on it does not copy the executable bit:
$ touch foo.sh
$ chmod +x foo.sh
$ ls -l foo.sh
-rwxr-xr-x 1 me 1002642239 0 30 Oct 17:25 foo.sh
$ ./node_modules/.bin/copy-cli foo.sh out
✔ out/foo.sh
$ ls -l out
total 0
-rw-r--r-- 1 me 1002642239 0 30 Oct 17:48 foo.sh
The text was updated successfully, but these errors were encountered:
Making a file executable then using
copy
on it does not copy the executable bit:The text was updated successfully, but these errors were encountered: