mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-12-25 00:44:22 +08:00
Fix launcher script (#888)
The idea was to leave trailing `\` for bash but it needs to be escaped! The script worked fine fwiw.
This commit is contained in:
parent
a326161e6b
commit
3c48fff159
1 changed files with 2 additions and 2 deletions
|
@ -142,8 +142,8 @@ defmodule AppBuilder.MacOS do
|
|||
#!/bin/sh
|
||||
set -e
|
||||
root=$(dirname $(dirname "$0"))
|
||||
$root/Resources/rel/bin/#{release_name} start \
|
||||
1>> ~/Library/Logs/#{app_name}.stdout.log \
|
||||
$root/Resources/rel/bin/#{release_name} start \\
|
||||
1>> ~/Library/Logs/#{app_name}.stdout.log \\
|
||||
2>> ~/Library/Logs/#{app_name}.stderr.log
|
||||
"""
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue