Browse Source

backslash not needed

Bob Mottram 7 years ago
parent
commit
20a715d85a
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/freedombone-utils-elixir

+ 1
- 1
src/freedombone-utils-elixir View File

@@ -81,7 +81,7 @@ function image_install_elixir {
81 81
       echo "cd $INSTALL_DIR || exit 1";
82 82
       echo "erlang_package=$erlang_package";
83 83
       echo "wget https://packages.erlang-solutions.com/\$erlang_package";
84
-      echo "if [ ! -f \"\$INSTALL_DIR/\$erlang_package\" ]; then";
84
+      echo "if [ ! -f \"$INSTALL_DIR/\$erlang_package\" ]; then";
85 85
       echo '    exit 2';
86 86
       echo 'fi';
87 87
       echo "dpkg -i \$erlang_package"; } > "$rootdir/usr/bin/install_elixir"