diff options
author | Benoit Foucher <benoit@zeroc.com> | 2014-12-10 17:30:25 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2014-12-10 17:30:25 +0100 |
commit | a784b7900e21d8213787f29028317384ba42a489 (patch) | |
tree | 8a24136d30777f317e1cc3d2103c1d1e60750c3d /cpp/demo/IceGrid/secure/expect.py | |
parent | Fixed (ICE-6115) - extra new lines in testicedist.py windows output (diff) | |
download | ice-a784b7900e21d8213787f29028317384ba42a489.tar.bz2 ice-a784b7900e21d8213787f29028317384ba42a489.tar.xz ice-a784b7900e21d8213787f29028317384ba42a489.zip |
Fixed ICE-6123: demo/IceGrid/secure can't find python executable
Diffstat (limited to 'cpp/demo/IceGrid/secure/expect.py')
-rwxr-xr-x | cpp/demo/IceGrid/secure/expect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/demo/IceGrid/secure/expect.py b/cpp/demo/IceGrid/secure/expect.py index 14e62d4a8fa..52ede0807f7 100755 --- a/cpp/demo/IceGrid/secure/expect.py +++ b/cpp/demo/IceGrid/secure/expect.py @@ -45,7 +45,7 @@ else: sys.stdout.write("creating certificates... ") sys.stdout.flush() -makecerts = Util.spawn("python -u makecerts.py") +makecerts = Util.spawn(sys.executable + " -u makecerts.py") makecerts.expect("Do you want to keep this as the CA subject name?") makecerts.sendline("y") makecerts.expect("Enter the email address of the CA:") |