We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9496d7 commit 844c195Copy full SHA for 844c195
1 file changed
jython_install.sh
@@ -15,7 +15,7 @@
15
16
set -euo pipefail
17
[ -n "${DEBUG:-}" ] && set -x
18
-srcdir="$( cd "$( dirname "$0}" )" && pwd )"
+srcdir="$( cd "$( dirname "$0" )" && pwd )"
19
20
JYTHON_VERSION=2.7.0
21
@@ -26,7 +26,7 @@ JYTHON_VERSION=2.7.0
26
if ! [ -e /opt/jython ]; then
27
mkdir -p /opt
28
wget -cO jython-installer.jar "http://search.maven.org/remotecontent?filepath=org/python/jython-installer/$JYTHON_VERSION/jython-installer-$JYTHON_VERSION.jar"
29
- $sudo "$srcdir/jython_autoinstall.exp"
+ $sudo expect "$srcdir/jython_autoinstall.exp"
30
$sudo ln -sf "/opt/jython-$JYTHON_VERSION" /opt/jython
31
rm -f jython-installer.jar
32
echo
0 commit comments