Skip to content

Commit

Permalink
use lowercase port variable only (#1726)
Browse files Browse the repository at this point in the history
  • Loading branch information
xpillons authored Oct 10, 2023
1 parent fdf0fbf commit 6fc05b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ container_name=$1

echo "container_name=$container_name"
echo "enroot start"
enroot start --rw -e NOTEBOOK_ROOT="$NOTEBOOK_ROOT" -e CONFIG_FILE="$CONFIG_FILE" -e PORT="$port" $container_name $THIS_DIR/start_rstudio.sh
enroot start --rw -e NOTEBOOK_ROOT="$NOTEBOOK_ROOT" -e CONFIG_FILE="$CONFIG_FILE" -e port="$port" $container_name $THIS_DIR/start_rstudio.sh
echo "enroot remove"
enroot remove -f $container_name
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ EOF

# Launch the Rstudio server
set -x
/usr/lib/rstudio-server/bin/rserver --www-port ${PORT}
/usr/lib/rstudio-server/bin/rserver --www-port ${port}

0 comments on commit 6fc05b0

Please sign in to comment.