Skip to content

Commit

Permalink
Change HAVESUDO default to 1 if not defined
Browse files Browse the repository at this point in the history
  • Loading branch information
cwolferh committed Nov 27, 2012
1 parent 0f05f33 commit 35db757
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions bootstrap.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#!/bin/bash

# Set this to 1 if you do have sudo permissions
HAVESUDO=0
# Set this to 0 if you don't have (or don't want to use) sudo permissions
if [ "x$HAVESUDO" = "x" ]; then
HAVESUDO=1
fi

# Setup a development environment for conductor, aeolus-image-rubygem
# and aeolus-cli. Configure conductor to use an external
Expand Down

0 comments on commit 35db757

Please sign in to comment.