Restructure installation paths

This commit is contained in:
2020-05-26 04:53:43 +02:00
parent 48c35aab63
commit 0eb22fcfd9
5 changed files with 10 additions and 7 deletions

View File

@@ -0,0 +1,2 @@
#/usr/bin/env bash
/usr/lib/github-fast-env/github-fast-env.rb "$@"

View File

@@ -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")