Skip to content

Commit

Permalink
Remove sudo from calls to get install to work on local machine
Browse files Browse the repository at this point in the history
  • Loading branch information
lschaefer-sugarcrm committed Apr 2, 2018
1 parent 85c5022 commit d1d3d86
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/GetCopyOfSugar.sh
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,8 @@ cd $sugarDirectory
rm -f $cookieFile

# Set the file permissions (required for Travis CI)
#sudo chmod -R 777 .
chmod -R 777 .
sudo chmod -R 777 .


######################################################################
Expand Down
2 changes: 1 addition & 1 deletion scripts/InstallSugarAndProfM.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ cp cliModuleInstall.php $sugarDirectory/cliModuleInstall.php
cp ../package/releases/sugarcrm-ProfessorM-*-standard.zip $sugarDirectory/sugarcrm-ProfessorM-standard.zip

# Update the permissions for the Sugar directory
#sudo chmod -R 777 $sugarDirectory
chmod -R 777 $sugarDirectory
sudo chmod -R 777 $sugarDirectory

######################################################################
# Install Sugar
Expand Down
2 changes: 1 addition & 1 deletion scripts/SetupEnvAndRunPHPUnitTests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ sugarSourceZipsDirectory=$8
# Setup
######################################################################

#sudo chmod -R 777 .
chmod -R 777 .
sudo chmod -R 777 .

mkdir workspace

Expand Down

0 comments on commit d1d3d86

Please sign in to comment.