Skip to content
Snippets Groups Projects
Commit f14f9e41 authored by Jakob Kaiser's avatar Jakob Kaiser Committed by Philipp Spilger
Browse files

chore: Remove unsused function

Change-Id: I005792a6a62aece78bce92975e27ab8b0ea22084
parent 9d8305ca
No related branches found
No related tags found
No related merge requests found
......@@ -57,20 +57,6 @@ get_host_env() {
fi
}
# Get the _{INSIDE,OUTSIDE} variant of a variable based in whether we are in a
# complete container or not.
#
# Usage: get_var_in_out <variable-name>
get_var_in_out() {
local var_name;
var_name="$1"
if [ -n "${SINGULARITY_NAME:-}" ]; then
printenv "${var_name}_INSIDE"
else
printenv "${var_name}_OUTSIDE"
fi
}
#####################
# SETUP ENVIRONMENT #
#####################
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment