ref: eda8e33fe627b63f66d516779b37e216e31fc107
parent: a51653aad620ecfc68d0c12311b465a87671bf1e
author: Skyrbunny <tallesttower1@gmail.com>
date: Thu Sep 14 17:12:49 EDT 2023
fixed a few typos
--- a/mkfile
+++ b/mkfile
@@ -1,4 +1,4 @@
-install:V Q:
+install:VQ:
mkdir -p /$objtype/bin/ricket
cp ricket /$objtype/bin/ricket/run
cp package.rc /$objtype/bin/ricket/package
@@ -5,12 +5,12 @@
cp ricket.troff /sys/man/1/ricket
echo Ricket is now installed on your system.
-clean:V Q:
+clean:VQ:
rm -rf /$objtype/bin/ricket
rm -f /sys/man/1/ricket
echo Bye, ricket!
-build:V Q:
+build:VQ:
echo Please note that go must be installed on the system for this to work.
echo Attempting to build ricket from source.
GOARCH=$objtype go build .
binary files a/ricket b/ricket differ
--- a/ricket.go
+++ b/ricket.go
@@ -15,7 +15,7 @@
if len(os.Args) == 0 {
help()
} else {
- run(os.Args[0])
+ run(os.Args[1])
}
}