Skip to content

Commit 0ad6174

Browse files
committed
Style fixes
1 parent 64a0599 commit 0ad6174

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

scripts/handle_tmux_automatic_start/systemd_enable.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,22 +55,21 @@ systemd_unit_file() {
5555
}
5656

5757
write_unit_file() {
58-
systemd_unit_file > "${systemd_unit_file_path}"
58+
systemd_unit_file > "${systemd_unit_file_path}"
5959
}
6060

6161
write_unit_file_unless_exists() {
62-
6362
local systemd_unit_file_dir=$(dirname ${systemd_unit_file_path})
6463
if ! [ -d $systemd_unit_file_dir ]; then
6564
mkdir -p $systemd_unit_file_dir
6665
write_unit_file
6766
elif ! [ -e "${systemd_unit_file_path}" ]; then
68-
write_unit_file
67+
write_unit_file
6968
fi
7069
}
7170

7271
main() {
73-
write_unit_file_unless_exists
72+
write_unit_file_unless_exists
7473
enable_tmux_unit_on_boot
7574
}
7675
main

0 commit comments

Comments
 (0)