We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64a0599 commit 0ad6174Copy full SHA for 0ad6174
scripts/handle_tmux_automatic_start/systemd_enable.sh
@@ -55,22 +55,21 @@ systemd_unit_file() {
55
}
56
57
write_unit_file() {
58
- systemd_unit_file > "${systemd_unit_file_path}"
+ systemd_unit_file > "${systemd_unit_file_path}"
59
60
61
write_unit_file_unless_exists() {
62
-
63
local systemd_unit_file_dir=$(dirname ${systemd_unit_file_path})
64
if ! [ -d $systemd_unit_file_dir ]; then
65
mkdir -p $systemd_unit_file_dir
66
write_unit_file
67
elif ! [ -e "${systemd_unit_file_path}" ]; then
68
- write_unit_file
+ write_unit_file
69
fi
70
71
72
main() {
73
- write_unit_file_unless_exists
+ write_unit_file_unless_exists
74
enable_tmux_unit_on_boot
75
76
main
0 commit comments