summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2015-04-09 14:44:45 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2015-04-09 14:44:45 +0200
commit9a79a9dfc1a9e0443915813cbfc5db38e151dbd3 (patch)
tree054063ddf372fcd11dead3c30d03f267505e4c7a
parentbcd0e950a774338237f666894e625201973bee34 (diff)
downloadbiruda-9a79a9dfc1a9e0443915813cbfc5db38e151dbd3.tar.gz
biruda-9a79a9dfc1a9e0443915813cbfc5db38e151dbd3.tar.bz2
small fixes
-rw-r--r--examples/build_gold_image/biruda.conf3
-rw-r--r--src/biruda.ggo2
-rw-r--r--src/cli.h2
3 files changed, 4 insertions, 3 deletions
diff --git a/examples/build_gold_image/biruda.conf b/examples/build_gold_image/biruda.conf
index 6a22a98..4b68f1a 100644
--- a/examples/build_gold_image/biruda.conf
+++ b/examples/build_gold_image/biruda.conf
@@ -36,8 +36,9 @@ worker example_run
execution = direct
+ command = "/bin/chroot rhel6-${ARCH} /bin/bash -c '/bin/cat /etc/redhat-release'"
# command = "/bin/chroot rhel6-x64 /bin/bash -c '/bin/cat /etc/redhat-release'"
- command = "/bin/chroot rhel6-i686 /bin/bash -c '/bin/cat /etc/redhat-release'"
+# command = "/bin/chroot rhel6-i686 /bin/bash -c '/bin/cat /etc/redhat-release'"
}
webserver
diff --git a/src/biruda.ggo b/src/biruda.ggo
index 7df88ba..3fdcbe4 100644
--- a/src/biruda.ggo
+++ b/src/biruda.ggo
@@ -58,7 +58,7 @@ section "Command Line Interface"
optional
option "human-readable" -
- "try to display output in for humans and not for computers"
+ "try to display output in a form suitable for humans and not for computers"
optional
option "guess-env" -
diff --git a/src/cli.h b/src/cli.h
index e6ac44c..2907b6a 100644
--- a/src/cli.h
+++ b/src/cli.h
@@ -5,7 +5,7 @@
#include <stdio.h>
-#ifdef _WIN32
+#ifndef _WIN32
int start_interactive( bool colors, const char *host, unsigned short port, FILE *in );