Preserve +x on scripts when using darcs #1929 [Scott Barron]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1996 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jamis Buck
2005-08-12 20:32:23 +00:00
parent cc0105cef9
commit 6500981d60
2 changed files with 3 additions and 1 deletions

View File

@@ -1,3 +1,5 @@
*SVN*
* Preserve +x on scripts when using darcs #1929 [Scott Barron]
* When executing multiline commands, use a backslash to escape the newline

View File

@@ -40,7 +40,7 @@ module SwitchTower
command = <<-CMD
if [[ ! -d #{actor.release_path} ]]; then
#{darcs} get #{configuration.repository} #{actor.release_path};
#{darcs} get --set-scripts-executable #{configuration.repository} #{actor.release_path};
fi
CMD
actor.run(command)