Skip to content
Snippets Groups Projects
Commit 0e634044 authored by Florian Schmitt's avatar Florian Schmitt
Browse files

fix error for debian install

parent 9efbe165
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ BRANCH=master
# Create user,folders and set permissions
id -u $WEB_USR &>/dev/null || useradd -g $WEB_GRP $WEB_USR
WEB_USR_HOME=(grep username /etc/passwd | cut -d ":" -f6)
WEB_USR_HOME=`grep username /etc/passwd | cut -d ":" -f6`
mkdir -p $WEB_USR_HOME/.config $WEB_USR_HOME/.npm $WEB_USR_HOME/.composer $WEB_DIR
chown -R $WEB_USR:$(id -gn $WEB_USR) $WEB_USR_HOME/.config $WEB_USR_HOME/.npm $WEB_USR_HOME/.composer $WEB_DIR
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment