15 lines
326 B
Bash
Executable File
15 lines
326 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Bring in the variables from SOLUTION file
|
|
#
|
|
# Determine if it is Mac OS and switch to use gxargs instead
|
|
CMD=xargs
|
|
if [ $(which system_profiler) ]; then
|
|
CMD=gxargs
|
|
fi
|
|
|
|
export $(grep -v '^#' SOLUTION | ${CMD} -d '\n')
|
|
export $(grep -v '^#' MANIFEST | ${CMD} -d '\n')
|
|
|
|
docker rmi ${REPO_URL}/${CONTAINER}:devel
|