Skip to content

Commit 190ef3b

Browse files
authored
Changed some echo so they print **''**, not **""**
1 parent e9f4a92 commit 190ef3b

1 file changed

Lines changed: 15 additions & 14 deletions

File tree

Makefile

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,36 +11,37 @@ MIME_FILE = "$(MIMESFOLDER)/x-programpack-extension.xml"
1111

1212
all: setup update_database associate
1313
_create_dirs:
14-
echo "Creating directories..."
14+
echo 'Creating directories...'
1515
mkdir -p "$(APPSFOLDER)"
16-
echo "Apps directory created"
16+
echo 'Apps directory created'
1717
mkdir -p "$(MIMESFOLDER)"
18-
echo "Mimetypes directory created"
19-
echo "Directories created"
18+
echo 'Mimetypes directory created'
19+
echo 'Directories created'
2020
setup:
21-
echo "Starting..."
21+
echo 'Starting...'
2222
$(MAKE) _create_dirs
2323
cp "desktop/ProgramPackLauncher.desktop" "$(LAUNCHER_FILE)"
24-
echo "Application .desktop file copied"
24+
echo 'Application .desktop file copied'
2525
cp "mimetype/programpack-extension.xml" "$(MIME_FILE)"
26-
echo "Mimetype copied"
27-
echo "Done!"
26+
echo 'Mimetype copied'
27+
echo 'Done!"'
2828
uninstall:
29-
echo "Starting to uninstall..."
29+
echo 'Starting to uninstall...'
3030
$(MAKE) _create_dirs
3131
rm -f "$(LAUNCHER_FILE)"
3232
rm -f "$(MIME_FILE)"
33+
echo 'Successfully uninstalled'
3334
update_database:
34-
echo "Updating database\(s\)..."
35+
echo 'Updating database(s)...'
3536
update-mime-database $(BASICMIMEFOLDER)
3637
if [ $(IS_ROOT) == 0 ]; then \
3738
update-mime-database /usr/share/mime; \
38-
echo "Is root: updated the /usr/share/mime database"; \
39+
echo 'Is root: updated the /usr/share/mime database'; \
3940
else \
4041
echo "Not root: didn't update the /usr/share/mime database"; \
4142
fi
42-
echo "Database\(s\) updated"
43+
echo "Database(s) updated"
4344
associate:
44-
echo "Associating types..."
45+
echo 'Associating types...'
4546
echo $(DATA)>"$(APPSFOLDER)/mimeapps.list"
46-
echo "Type associated"
47+
echo 'Type associated'

0 commit comments

Comments
 (0)