From 3fdb117d718215a649d8dce32feb558b62f320f8 Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Thu, 24 May 2012 11:34:12 -0400 Subject: [PATCH] Use the correct command to get the directory name when running collectstatic --- collect_static_resources | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collect_static_resources b/collect_static_resources index 6d2c68e4d1..34a98715ab 100755 --- a/collect_static_resources +++ b/collect_static_resources @@ -1,3 +1,3 @@ #! /bin/bash -cd $(basedir $0) && django-admin.py collectstatic --noinput --settings=envs.aws --pythonpath=. +cd $(dirname $0) && django-admin.py collectstatic --noinput --settings=envs.aws --pythonpath=.