From 99cb07ea09a6fc70868743d39b9dab27ad7423ab Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 15 Nov 2014 16:52:41 +0530 Subject: [PATCH] Use the default user shell in the build VMs instead of bash --- setup/installer/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/installer/__init__.py b/setup/installer/__init__.py index 4ce2fdbd8f..eeb2099f3c 100644 --- a/setup/installer/__init__.py +++ b/setup/installer/__init__.py @@ -99,7 +99,7 @@ class VMInstaller(Command): SHUTDOWN_CMD = ['sudo', 'shutdown', '-h', 'now'] IS_64_BIT = False - BUILD_PREFIX = ['#!/bin/bash', 'export CALIBRE_BUILDBOT=1'] + BUILD_PREFIX = ['#!/bin/sh', 'export CALIBRE_BUILDBOT=1'] BUILD_RSYNC = ['mkdir -p ~/build/{project}', r'cd ~/build/{project}', Rsync.SYNC_CMD] BUILD_CLEAN = ['rm -rf dist/* build/* src/calibre/plugins/*'] BUILD_BUILD = ['python setup.py build',]