Sha256: 3cb1462ff57ac295aa1a8cd2f1ef303c8aeb32e9b2abecfccc7849e61ed090f3

Contents?: true

Size: 231 Bytes

Versions: 2

Compression:

Stored size: 231 Bytes

Contents

#!/bin/bash

if [ $# == 0 ] || [ $# -gt 1 ]; then
	echo wrong number of arguments;
	exit 1;
fi

DIR=$1

LAST_CHAR=${DIR: -1}

if [ $LAST_CHAR != "/" ]; then
	DIR=$DIR/;
fi

for f in $(ls $DIR*| sort -t _ -k 1 -g); do 
	sh $f;
done

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
dockersitter-0.8.1 lib/templates/admin/installation_scripts/scriptrunner.sh
dockersitter-0.8.0 lib/templates/admin/installation_scripts/scriptrunner.sh