diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-07-06 21:00:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-07 06:00:59 +0200 |
commit | b72ecaf639ca7b2edf5a762cfea3a11f7cc5da9a (patch) | |
tree | 0ae2981103962ff4d43930e08d776cee7c1d3620 /tools/niminst | |
parent | b88496ac67bea92c40cf1d0f3dc55b0fa91550a4 (diff) | |
download | Nim-b72ecaf639ca7b2edf5a762cfea3a11f7cc5da9a.tar.gz |
fix shebangs #! /xxx => #!/xxx (#18444)
Diffstat (limited to 'tools/niminst')
-rw-r--r-- | tools/niminst/buildsh.nimf | 2 | ||||
-rw-r--r-- | tools/niminst/deinstall.nimf | 2 | ||||
-rw-r--r-- | tools/niminst/install.nimf | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/tools/niminst/buildsh.nimf b/tools/niminst/buildsh.nimf index e7afd402e..f74413c09 100644 --- a/tools/niminst/buildsh.nimf +++ b/tools/niminst/buildsh.nimf @@ -1,6 +1,6 @@ #? stdtmpl(subsChar='?') | standard #proc generateBuildShellScript(c: ConfigData): string = -# result = "#! /bin/sh\n# Generated from niminst\n" & +# result = "#!/bin/sh\n# Generated from niminst\n" & # "# Template is in tools/niminst/buildsh.nimf\n" & # "# To regenerate run ``niminst csource`` or ``koch csource``\n" diff --git a/tools/niminst/deinstall.nimf b/tools/niminst/deinstall.nimf index 8b4477369..0dcfda75e 100644 --- a/tools/niminst/deinstall.nimf +++ b/tools/niminst/deinstall.nimf @@ -1,6 +1,6 @@ #? stdtmpl(subsChar='?') | standard #proc generateDeinstallScript(c: ConfigData): string = -# result = "#! /bin/sh\n# Generated by niminst\n" +# result = "#!/bin/sh\n# Generated by niminst\n" # var proj = c.name.toLowerAscii if [ $# -eq 1 ] ; then diff --git a/tools/niminst/install.nimf b/tools/niminst/install.nimf index a78914ecd..c2fc96e94 100644 --- a/tools/niminst/install.nimf +++ b/tools/niminst/install.nimf @@ -1,6 +1,6 @@ #? stdtmpl(subsChar = '?') | standard #proc generateInstallScript(c: ConfigData): string = -# result = "#! /bin/sh\n# Generated by niminst\n" +# result = "#!/bin/sh\n# Generated by niminst\n" # var proj = c.name.toLowerAscii set -e |