Skip to content
This repository has been archived by the owner on Feb 21, 2019. It is now read-only.

Commit

Permalink
fix for script
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippeAccorsi committed Oct 15, 2018
1 parent 67914c9 commit 694ff6c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion install_frontend_dependencies.sh
Expand Up @@ -26,7 +26,7 @@ function logerror {
##################################################################

# Check if not running with sudoers
if [ "$PARAM1" == "root" ]; then
if [ "$1" == "root" ]; then
SUDO=""
SUDOCURL=""
else
Expand Down
2 changes: 1 addition & 1 deletion setup_default_backend.sh
Expand Up @@ -131,7 +131,7 @@ function translate_email {
############################################

# Check if not running with sudoers
if [ "$PARAM1" == "root" ]; then
if [ "$1" == "root" ]; then
SUDO=""
SUDOCURL=""
else
Expand Down
2 changes: 1 addition & 1 deletion setup_functionnal_tests.sh
Expand Up @@ -23,7 +23,7 @@ function logerror {
##################################################################

# Check if not running with sudoers
if [ $PARAM1 == "root" ]; then
if [ "$1" == "root" ]; then
SUDO=""
SUDOCURL=""
else
Expand Down

0 comments on commit 694ff6c

Please sign in to comment.