diff options
| author | omni <omni+vagant@hack.org> | 2021-04-03 00:57:02 +0000 |
|---|---|---|
| committer | Felix Queißner <felix@ib-queissner.de> | 2021-04-03 10:47:53 +0200 |
| commit | 8d0eb55033a46f5b278224d173499d2f3d42eadf (patch) | |
| tree | 64ba945035aec5ae114a9c8641e0a224dde33daa | |
| parent | 5c59e94d941531a099d097d11bfc31274a932229 (diff) | |
| download | kristall-8d0eb55033a46f5b278224d173499d2f3d42eadf.tar.gz | |
don't depend on bash
| -rwxr-xr-x | doc/gen-man.sh | 22 | ||||
| -rwxr-xr-x | src/icons/mac-icon.sh | 2 | ||||
| -rwxr-xr-x | src/icons/update-themes.sh | 2 |
3 files changed, 13 insertions, 13 deletions
diff --git a/doc/gen-man.sh b/doc/gen-man.sh index b0e6f06..5b8ad18 100755 --- a/doc/gen-man.sh +++ b/doc/gen-man.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # # gen-man # @@ -20,25 +20,25 @@ gemtext_in="../src/about/help.gemini" gemtext_converter="./gem-to-man.awk" # Make sure we have all the stuff we need -if [[ ! -f "$man_head" ]]; then +if [ ! -f "$man_head" ]; then echo "man page head does not exist." - exit -1 + exit 1 fi -if [[ ! -f "$man_tail" ]]; then +if [ ! -f "$man_tail" ]; then echo "man page tail does not exist" - exit -1 + exit 1 fi -if [[ -z "$man_output" ]]; then +if [ -z "$man_output" ]; then echo "No output file" - exit -1 + exit 1 fi -if [[ ! -f "$gemtext_in" ]]; then +if [ ! -f "$gemtext_in" ]; then echo "Input gemtext file does not exist" - exit -1 + exit 1 fi -if [[ ! -f "$gemtext_converter" ]]; then +if [ ! -f "$gemtext_converter" ]; then echo "Gemtext converter script does not exist" - exit -1 + exit 1 fi # Write the head to the output file. diff --git a/src/icons/mac-icon.sh b/src/icons/mac-icon.sh index cd6e4e9..abe173f 100755 --- a/src/icons/mac-icon.sh +++ b/src/icons/mac-icon.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh mkdir AppIcon.iconset rsvg-convert kristall.svg -h 1024 > AppIcon.iconset/icon_512x512@2.png diff --git a/src/icons/update-themes.sh b/src/icons/update-themes.sh index f9bd47b..4d5d91d 100755 --- a/src/icons/update-themes.sh +++ b/src/icons/update-themes.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh rm -rf dark/actions/* rm -rf dark/objects/* |
