Skip to content

Commit

Permalink
fix script idempotency
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-pro committed Jan 16, 2024
1 parent a03c89b commit 4cfcbae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions linux/ubuntu_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function install() {

# Quotes https://askubuntu.com/a/1023258
echo "Creating desktop entry ${DESKTOP_ENTRY}"
cat <<EOT >> ${DESKTOP_ENTRY}
cat <<EOT > ${DESKTOP_ENTRY}
[Desktop Entry]
Type=Application
Name=Solar Screen Brightness
Expand All @@ -65,7 +65,7 @@ EOT

echo "Creating autostart entry ${AUTOSTART_ENTRY}"
mkdir -p ${AUTOSTART_DIR}
cat <<EOT >> ${AUTOSTART_ENTRY}
cat <<EOT > ${AUTOSTART_ENTRY}
[Desktop Entry]
Type=Application
Name=Solar Screen Brightness
Expand Down

0 comments on commit 4cfcbae

Please sign in to comment.