Skip to content

Commit

Permalink
Merge pull request #515 from willfurnass/BUG_inst_script_err
Browse files Browse the repository at this point in the history
Minor fix to install script
  • Loading branch information
willfurnass authored Dec 19, 2016
2 parents 63428a1 + 653c110 commit 80dd8a3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module load dev/${COMPILER}/${COMPILER_VERS}

# Create build, install and modulefile dirs
mkdir -m 0700 -p $BUILD_DIR
for d in $prefix $(dirname $modulefile); do
for d in $PREFIX $(dirname $MODULEFILE); do
mkdir -m 2775 -p $d
done

Expand All @@ -55,7 +55,7 @@ popd
popd

# Set permissions and ownership
for d in $prefix $(dirname $MODULEFILE); do
for d in $PREFIX $(dirname $MODULEFILE); do
chmod -R g+w $d
chown -R ${USER}:app-admins $d
done

0 comments on commit 80dd8a3

Please sign in to comment.