Use the default user shell in the build VMs instead of bash

This commit is contained in:
Kovid Goyal 2014-11-15 16:52:41 +05:30
parent c471e0d1e0
commit 99cb07ea09

View File

@ -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',]