Skip to content
This repository was archived by the owner on Feb 21, 2021. It is now read-only.

Commit 8c464bc

Browse files
author
Tiger Sachse
committed
final build, fixed #20, #19, #14, #6
1 parent ceb776d commit 8c464bc

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

shellcuts.deb

-16.9 KB
Binary file not shown.

source/bin/sc-handler

+5-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def command_help():
4646

4747
def command_init():
4848
"""Run initialization script."""
49-
command = 'sc-init'
49+
command = '/usr/bin/sc'
5050
print(command)
5151

5252
def command_list():
@@ -77,7 +77,7 @@ def command_version():
7777
command = 'echo "'
7878
for line in load_version_info():
7979
command += line
80-
command += '"'
80+
command = command[:-1] + '"'
8181
print(command)
8282

8383
def command_z():
@@ -188,3 +188,6 @@ command_pairs = (
188188
for pair in command_pairs:
189189
if pair[0] != None:
190190
pair[1]()
191+
exit(0)
192+
193+
command_help()

0 commit comments

Comments
 (0)