commit eabcc890d000ea668c247606c2eed9d6944103a4
parent c1a3efaab7300eaf4907cd90f4e01e8c3032eaf4
Author: Markus Hanetzok <markus@hanetzok.net>
Date: Sat, 6 Jul 2024 03:03:21 +0200
fix Makefile & .gitignore
both files were using the old name of the project
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.gitignore b/.gitignore
@@ -1,2 +1,2 @@
-mts
+sds
sensors.h
diff --git a/Makefile b/Makefile
@@ -5,7 +5,7 @@ build: clean
gcc -Wall -o sds sds.c -l curl
install: build
- cp -f mts /usr/bin/sds
+ cp -f sds /usr/bin/sds
chmod +x /usr/bin/sds
uninstall: