Skip to content

Commit 1d60865

Browse files
Add .am file for genkey and tessfont binaries (#1651)
* Upload genkey.am * Upload tessfont.am * Update src/install/nix/tessfont.am Co-authored-by: Copilot <[email protected]> * Update redeclipse.am * Update redeclipse-server.am * Update genkey.am * Remove man calling logic for genkey.am * Remove man calling logic for redeclipse-server.am * Remove man calling logic for redeclipse.am * Remove man calling logic for tessfont.am * Add man page calling logic back to redeclipse-server.am * Update redeclipse-server.am * Add man page calling logic back to redeclipse.am --------- Co-authored-by: Copilot <[email protected]>
1 parent 1bd3246 commit 1d60865

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

src/install/nix/genkey.am

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
3+
cd "@LIBEXECDIR@/@APPNAME@" || exit 1
4+
exec "./@APPNAME@" "$@"

src/install/nix/redeclipse-server.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
for arg
2+
for arg in "$@"
33
do
44
if [ "$arg" = --help ]
55
then

src/install/nix/redeclipse.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
for arg
2+
for arg in "$@"
33
do
44
if [ "$arg" = --help ]
55
then

src/install/nix/tessfont.am

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
3+
cd "@LIBEXECDIR@/@APPNAME@" || exit 1
4+
exec "./@APPNAME@" "$@"

0 commit comments

Comments
 (0)