diff options
author | Aaron Ball <nullspoon@oper.io> | 2018-04-09 14:09:25 -0600 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2018-04-09 14:09:25 -0600 |
commit | c21f0be59b2f8e451b937274fcf75c356fb1de00 (patch) | |
tree | dd8c1bd6754449021e9dfb50b87b57dae99dbd07 | |
parent | 0b40858952e7785263988680c346b5f664c7ab0b (diff) | |
download | pkgself-c21f0be59b2f8e451b937274fcf75c356fb1de00.tar.gz pkgself-c21f0be59b2f8e451b937274fcf75c356fb1de00.tar.xz |
Changed version delimiter from '#' to '_'
Some uploaders had an issue with the source file having '#' in the name.
Changing to '_' is still unique, but doesn't break client upload tools
(so far).
-rwxr-xr-x | pkgself.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -102,7 +102,7 @@ main() { fi # Build the output filename - local output="${pkgdir}/${name}#${version}-${release}.sh" + local output="${pkgdir}/${name}_${version}-${release}.sh" # Copy the installer header script into the tmp directory, with the right name cp ${selfdir}/install-header.sh "${output}" |