mirror of
https://github.com/dvorka/hstr.git
synced 2025-02-24 06:47:16 +08:00
Fixing processing of parameters from the command line that has been broken.
This commit is contained in:
parent
7014c1b2ed
commit
d072e30063
2 changed files with 6 additions and 7 deletions
8
dist/ubuntu-env.sh
vendored
8
dist/ubuntu-env.sh
vendored
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
export HHVERSION="1.7.1"
|
||||
export HHVERSION="1.7.4"
|
||||
export HHFULLVERSION=${HHVERSION}-0ubuntu1
|
||||
export HH=hh_${HHVERSION}
|
||||
export HHRELEASE=hh_${HHFULLVERSION}
|
||||
|
@ -12,9 +12,9 @@ export HHBUILD=hstr-${NOW}
|
|||
#export UBUNTUVERSION=raring
|
||||
export UBUNTUVERSION=saucy
|
||||
|
||||
export HHBZRMSG="Fixing history management - exact match ensured."
|
||||
export HHBZRMSG="Color version and env var configuration."
|
||||
|
||||
# - user email must be as in gpg i.e. (Dvorka) must present
|
||||
# - hh_ must be with underscore
|
||||
# - user email must be the same as in gpg i.e. (Dvorka) must present
|
||||
# - hh_ must be with underscore (dh_make enforced)
|
||||
|
||||
# eof
|
||||
|
|
|
@ -619,10 +619,9 @@ int main(int argc, char *argv[])
|
|||
printf("%s", HELP_STRING);
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
} else {
|
||||
assemble_cmdline(argc, argv);
|
||||
hstr();
|
||||
}
|
||||
assemble_cmdline(argc, argv);
|
||||
hstr();
|
||||
} else {
|
||||
cmdline[0]=0;
|
||||
hstr();
|
||||
|
|
Loading…
Reference in a new issue