branch: externals/detached
commit e55cf27103ffd0a50ba95e2697946b0047625fd4
Author: Niklas Eklund <[email protected]>
Commit: Niklas Eklund <[email protected]>
Remove detached-env file
---
detached-env | 12 ------------
1 file changed, 12 deletions(-)
diff --git a/detached-env b/detached-env
deleted file mode 100755
index 39a74d5c86..0000000000
--- a/detached-env
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/env bash
-
-# detached-env is a script which purpose is to run a detached command, and
-# issue to stdout, based on the exit code.
-
-detached_command="$*"
-
-if eval "$detached_command"; then
- echo -e "\nDetached session finished"
-else
- echo -e "\nDetached session exited abnormally with code $?"
-fi