-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Method setExecutable should invoke chmod a+x instead of chmod +x #39
Comments
vpartington
pushed a commit
that referenced
this issue
Mar 20, 2012
…table invokes chmod a+x instead of chmod +x, current working directory not set using "cd" when invoking commands for SshScpFile. - Improved logging of SshScpFile.getInputStream() and SshScpFile.getOutputStream(). - Improved logging of handling of "sudo" and "cd" and the corresponding pseudocommands "nosudo" and "nocd".
Fixed in Overthere 1.0.17. |
vpartington
pushed a commit
that referenced
this issue
Mar 20, 2012
…table invokes chmod a+x instead of chmod +x, current working directory not set using "cd" when invoking commands for SshScpFile. - Improved logging of SshScpFile.getInputStream() and SshScpFile.getOutputStream(). - Improved logging of handling of "sudo" and "cd" and the corresponding pseudocommands "nosudo" and "nocd". Conflicts (imports only): overthere/src/main/java/com/xebialabs/overthere/ssh/SshSudoConnection.java
Commit is on master to be included in 2.0.0 |
vpartington
pushed a commit
that referenced
this issue
Aug 2, 2012
…table invokes chmod a+x instead of chmod +x, current working directory not set using "cd" when invoking commands for SshScpFile. - Improved logging of SshScpFile.getInputStream() and SshScpFile.getOutputStream(). - Improved logging of handling of "sudo" and "cd" and the corresponding pseudocommands "nosudo" and "nocd". Conflicts (imports only): overthere/src/main/java/com/xebialabs/overthere/ssh/SshSudoConnection.java
vpartington
pushed a commit
that referenced
this issue
Aug 2, 2012
…table invokes chmod a+x instead of chmod +x, current working directory not set using "cd" when invoking commands for SshScpFile. - Improved logging of SshScpFile.getInputStream() and SshScpFile.getOutputStream(). - Improved logging of handling of "sudo" and "cd" and the corresponding pseudocommands "nosudo" and "nocd".
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When setExecutable is called on an SshScpFile, the command "chmod +x" is executed. This should be "chmod a+x" to prevent the umask from preventing some of the executable bits from being set.
The text was updated successfully, but these errors were encountered: