Restructure installation paths
This commit is contained in:
parent
48c35aab63
commit
0eb22fcfd9
@ -7,10 +7,11 @@ edition = "2018"
|
||||
|
||||
[package.metadata.deb]
|
||||
assets = [
|
||||
["github-fast-env/github-fast-envd.rb", "usr/bin/github-fast-envd", "755"],
|
||||
["github-fast-env/github-fast-env.rb", "usr/bin/github-fast-env", "755"],
|
||||
["github-fast-env/bin/github-fast-envd", "usr/bin/", "755"],
|
||||
["github-fast-env/bin/github-fast-env", "usr/bin/", "755"],
|
||||
["github-fast-env/github-fast-env.rb", "usr/lib/github-fast-env/", "755"],
|
||||
["github-fast-env/preload.rb", "usr/lib/github-fast-env/", "755"],
|
||||
["github-fast-env/systemd/github-fast-envd.service", "usr/lib/systemd/system/", "644"],
|
||||
["ghe-fast-tools/ghe-fast-console.rb", "usr/lib/ghe-fast-tools/", "644"],
|
||||
["ghe-fast-tools/bin/ghe-fast-console.rb", "usr/bin/ghe-fast-console", "755"],
|
||||
["ghe-fast-tools/bin/ghe-fast-console", "usr/bin/", "755"],
|
||||
]
|
||||
|
2
ghe-fast-tools/bin/ghe-fast-console
Normal file
2
ghe-fast-tools/bin/ghe-fast-console
Normal file
@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env bash
|
||||
/usr/bin/github-fast-env --interactive /usr/lib/ghe-fast-tools/ghe-fast-console.rb
|
@ -1,2 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
sudo /usr/bin/github-fast-env --interactive /usr/lib/ghe-fast-tools/ghe-fast-console.rb
|
2
github-fast-env/bin/github-fast-env
Normal file
2
github-fast-env/bin/github-fast-env
Normal file
@ -0,0 +1,2 @@
|
||||
#/usr/bin/env bash
|
||||
/usr/lib/github-fast-env/github-fast-env.rb "$@"
|
@ -85,7 +85,7 @@ def read_command(control_socket)
|
||||
end
|
||||
|
||||
def set_up_named_pipes(control_socket, connection_id)
|
||||
pipe_base_path = "/#{$run_base_path}/github-fast-envd.#{connection_id}"
|
||||
pipe_base_path = "/#{$runtime_directory}/github-fast-envd.#{connection_id}"
|
||||
pipe_base_path_encoded = Base64.encode64(pipe_base_path).delete("\n")
|
||||
|
||||
stdin = open_pipe("#{pipe_base_path}.stdin")
|
||||
@ -119,7 +119,7 @@ def set_up_named_pipes(control_socket, connection_id)
|
||||
end
|
||||
|
||||
def clean_up_named_pipes(control_socket, connection_id)
|
||||
pipe_base_path = "/#{$run_base_path}/github-fast-envd.#{connection_id}"
|
||||
pipe_base_path = "/#{$runtime_directory}/github-fast-envd.#{connection_id}"
|
||||
|
||||
if File.exist?("#{pipe_base_path}.stdin")
|
||||
File.delete("#{pipe_base_path}.stdin")
|
Loading…
Reference in New Issue
Block a user