Navigation Menu

Skip to content

Commit

Permalink
using updated method for getting args
Browse files Browse the repository at this point in the history
git-svn-id: http://shflags.googlecode.com/svn/trunk/source/1.0@119 9d7cb843-df4f-0410-8a79-4785ae5a3405
  • Loading branch information
kate.ward@forestent.com committed Apr 24, 2009
1 parent d11ae6b commit a13267e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/gen_test_results.sh
Expand Up @@ -55,7 +55,8 @@ os_version=`versions_osVersion |tr ' ' '_'`
DEFINE_boolean force false 'force overwrite' f
DEFINE_string output_dir "`pwd`" 'output dir' d
DEFINE_string output_file "${os_name}-${os_version}.txt" 'output file' o
FLAGS "$@" || exit $?; shift ${FLAGS_ARGC}
FLAGS "${@:-}" || exit $?
eval set -- "${FLAGS_ARGV}"

# determine output filename
output="${FLAGS_output_dir:+${FLAGS_output_dir}/}${FLAGS_output_file}"
Expand Down

0 comments on commit a13267e

Please sign in to comment.