Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
Diffstat (limited to 'commands')
-rwxr-xr-xcommands/helpers/build2
-rwxr-xr-xcommands/helpers/build-snapshot2
-rwxr-xr-xcommands/run2
3 files changed, 4 insertions, 2 deletions
diff --git a/commands/helpers/build b/commands/helpers/build
index 99f3048..1904955 100755
--- a/commands/helpers/build
+++ b/commands/helpers/build
@@ -3,6 +3,8 @@
import common
from devbot import build
+from devbot import system
common.setup()
+system.check()
build.build()
diff --git a/commands/helpers/build-snapshot b/commands/helpers/build-snapshot
index 84b1150..1dbf2eb 100755
--- a/commands/helpers/build-snapshot
+++ b/commands/helpers/build-snapshot
@@ -43,7 +43,6 @@ runsugarscript=$rootdir/run-sugar.sh
cat > $runsugarscript << "EOF"
#!/bin/sh
-commands/check-system
commands/run
EOF
@@ -54,7 +53,6 @@ runshellscript=$rootdir/run-shell.sh
cat > $runshellscript << "EOF"
#!/bin/sh
-commands/check-system
commands/shell
EOF
diff --git a/commands/run b/commands/run
index 2bc3a31..c71fe66 100755
--- a/commands/run
+++ b/commands/run
@@ -5,6 +5,8 @@ helpersdir=$commandsdir/helpers
rootdir=`dirname "$commandsdir"`
display=`$helpersdir/find-free-display`
+$commandsdir/check-system
+
if [ -f $rootdir/prefs ]; then
source $rootdir/prefs
fi