fix: fixed time_tracker to time_logix
This commit is contained in:
parent
a347bbae4a
commit
920b7220c8
1 changed files with 4 additions and 4 deletions
8
.github/workflows/build.yml
vendored
8
.github/workflows/build.yml
vendored
|
|
@ -27,13 +27,13 @@ jobs:
|
||||||
- name: Create AppDir structure and files without icon
|
- name: Create AppDir structure and files without icon
|
||||||
run: |
|
run: |
|
||||||
mkdir -p AppDir/usr/bin
|
mkdir -p AppDir/usr/bin
|
||||||
pyinstaller --onefile --windowed time_tracker.py
|
pyinstaller --onefile --windowed time_logix.py
|
||||||
cp dist/time_tracker AppDir/usr/bin/time_tracker
|
cp dist/time_logix AppDir/usr/bin/time_logix
|
||||||
# Create AppRun file
|
# Create AppRun file
|
||||||
cat <<'EOF' > AppDir/AppRun
|
cat <<'EOF' > AppDir/AppRun
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
HERE="$(dirname "$(readlink -f "${0}")")"
|
HERE="$(dirname "$(readlink -f "${0}")")"
|
||||||
exec "$HERE/usr/bin/time_tracker" "$@"
|
exec "$HERE/usr/bin/time_logix" "$@"
|
||||||
EOF
|
EOF
|
||||||
chmod +x AppDir/AppRun
|
chmod +x AppDir/AppRun
|
||||||
# Create desktop file without an icon reference
|
# Create desktop file without an icon reference
|
||||||
|
|
@ -41,7 +41,7 @@ jobs:
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Type=Application
|
Type=Application
|
||||||
Name=TimeLogix
|
Name=TimeLogix
|
||||||
Exec=time_tracker
|
Exec=time_logix
|
||||||
Comment=Time tracking app for contractors
|
Comment=Time tracking app for contractors
|
||||||
Categories=Utility;
|
Categories=Utility;
|
||||||
EOF
|
EOF
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue