diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2014-05-26 12:29:22 -0700 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2014-05-26 12:29:22 -0700 |
commit | 0f61d97cb8e971308d91cfe305d20f1f33190dc0 (patch) | |
tree | 6b64a2446e6593ea5ad0022c3ad240db75032f33 /bin/vc11convert.sh | |
parent | c328f7a7602d2fbc875c7f5301bdfaee496da325 (diff) |
Remove unnecessary options
Diffstat (limited to 'bin/vc11convert.sh')
-rwxr-xr-x | bin/vc11convert.sh | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/bin/vc11convert.sh b/bin/vc11convert.sh index b0404b5..7646547 100755 --- a/bin/vc11convert.sh +++ b/bin/vc11convert.sh @@ -2,9 +2,6 @@ # Convert VC10 project files to VC11. # -# -i <ver> encoded input VC version, '10.0' by default -# -o <ver> encoded output VC version, '11.0' by default -# trap 'exit 1' ERR @@ -14,21 +11,11 @@ function error () } wd=`pwd` -vi=10.0 -vo=11.0 +vi=vc10 +vo=vc11 while [ $# -gt 0 ]; do case $1 in - -i) - shift - vi=$1 - shift - ;; - -o) - shift - vo=$1 - shift - ;; *) error "unknown option: $1" exit 1 |