From c3dc09db4e3197f5461f9a5abd01bb91e28aa99f Mon Sep 17 00:00:00 2001 From: "ph4ntome@gmail.com" Date: Sat, 1 Nov 2014 22:26:56 +0000 Subject: [PATCH] Fixed mktemp templates git-svn-id: https://callirhoe.googlecode.com/svn/branches/phantome@202 81c8bb96-aa45-f2e2-0eef-c4fa4a15c6df --- make_pkg | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/make_pkg b/make_pkg index 05b452c..3c20dd4 100755 --- a/make_pkg +++ b/make_pkg @@ -16,7 +16,9 @@ make_archive() { # Create Callirhoe package -DIR=`mktemp -d -t callirhoe` +echo "here" +DIR=`mktemp -d -t callirhoe.XXX` +echo "there" # TODO: do we need .pyc files? (my guess is yes, how do we force creation?) cp -R geom lang layouts lib style "$DIR" cp callirhoe.py "$DIR/__main__.py" @@ -25,7 +27,7 @@ cp callirhoe.py "$DIR/__main__.py" make_archive callirhoe "$DIR" # Create Calmagick package -DIR=`mktemp -d -t callirhoe` +DIR=`mktemp -d -t callirhoe.XXX` mkdir "$DIR/lib" cp lib/__init__.py lib/geom.py "$DIR/lib" cp calmagick.py "$DIR/__main__.py"