From a0d9da362f9ebb99bf42d19106d01706a5180901 Mon Sep 17 00:00:00 2001 From: Whitney Armstrong <warmstrong@anl.gov> Date: Sun, 27 Sep 2020 20:46:35 -0500 Subject: [PATCH] Version 2.2.1 --- VERSION | 2 +- build/bin/eic-shell | 22 ---------------------- build/bin/ipython | 22 ---------------------- build/bin/root | 22 ---------------------- 4 files changed, 1 insertion(+), 67 deletions(-) delete mode 100755 build/bin/eic-shell delete mode 100755 build/bin/ipython delete mode 100755 build/bin/root diff --git a/VERSION b/VERSION index ccbccc3dc..c043eea77 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.2.0 +2.2.1 diff --git a/build/bin/eic-shell b/build/bin/eic-shell deleted file mode 100755 index bf833d0de..000000000 --- a/build/bin/eic-shell +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env bash - -## Boilerplate to make pipes work -piped_args= -if [ -p /dev/stdin ]; then - # If we want to read the input line by line - while IFS= read line; do - if [ -z "$piped_args" ]; then - piped_args="${line}" - else - piped_args="${piped_args} -${line}" - fi - done -fi - -## Fire off the application wrapper -if [ ${piped_args} ] ; then - echo -e ${piped_args} | singularity exec /home/sjoosten/projects/eic_container/build/lib/eic.sif.2.0.4 eic-shell $@ -else - singularity exec /home/sjoosten/projects/eic_container/build/lib/eic.sif.2.0.4 eic-shell $@ -fi diff --git a/build/bin/ipython b/build/bin/ipython deleted file mode 100755 index 30000603d..000000000 --- a/build/bin/ipython +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env bash - -## Boilerplate to make pipes work -piped_args= -if [ -p /dev/stdin ]; then - # If we want to read the input line by line - while IFS= read line; do - if [ -z "$piped_args" ]; then - piped_args="${line}" - else - piped_args="${piped_args} -${line}" - fi - done -fi - -## Fire off the application wrapper -if [ ${piped_args} ] ; then - echo -e ${piped_args} | singularity exec /home/sjoosten/projects/eic_container/build/lib/eic.sif.2.0.4 ipython $@ -else - singularity exec /home/sjoosten/projects/eic_container/build/lib/eic.sif.2.0.4 ipython $@ -fi diff --git a/build/bin/root b/build/bin/root deleted file mode 100755 index 621bfae44..000000000 --- a/build/bin/root +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env bash - -## Boilerplate to make pipes work -piped_args= -if [ -p /dev/stdin ]; then - # If we want to read the input line by line - while IFS= read line; do - if [ -z "$piped_args" ]; then - piped_args="${line}" - else - piped_args="${piped_args} -${line}" - fi - done -fi - -## Fire off the application wrapper -if [ ${piped_args} ] ; then - echo -e ${piped_args} | singularity exec /home/sjoosten/projects/eic_container/build/lib/eic.sif.2.0.4 root $@ -else - singularity exec /home/sjoosten/projects/eic_container/build/lib/eic.sif.2.0.4 root $@ -fi -- GitLab