Merge pull request #33 from kenjones-cisco/bugfix/acceptance

Bugfix: Resolve failing acceptance test
This commit is contained in:
Kenny Jones 2017-09-23 00:00:48 -04:00 committed by GitHub
commit 2933ea1684
3 changed files with 2 additions and 3 deletions

View File

@ -5,8 +5,7 @@ set -e
# acceptance test
X=$(./bin/yaml w ./examples/sample.yaml b.c 3 | ./bin/yaml r - b.c)
if [ $X != 3 ]
then
if [[ $X != 3 ]]; then
echo "Failed acceptance test: expected 2 but was $X"
exit 1
fi

View File

@ -3,6 +3,5 @@
# This assumes that gonative and gox is installed as per the 'one time setup' instructions
# at https://github.com/inconshreveable/gonative
rm build/*
gox -output="build/{{.Dir}}_{{.OS}}_{{.Arch}}"

View File

@ -53,6 +53,7 @@ func newCommandCLI() *cobra.Command {
rootCmd.PersistentFlags().BoolVarP(&verbose, "verbose", "v", false, "verbose mode")
rootCmd.AddCommand(createReadCmd(), createWriteCmd(), createNewCmd())
rootCmd.SetOutput(os.Stdout)
return rootCmd
}