mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-03 14:03:06 +02:00
Use the default user shell in the build VMs instead of bash
This commit is contained in:
parent
c471e0d1e0
commit
99cb07ea09
1 changed files with 1 additions and 1 deletions
|
|
@ -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',]
|
||||
|
|
|
|||
Loading…
Reference in a new issue