diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2008-11-27 20:19:24 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2008-11-27 20:19:24 +0000 |
commit | c198e50ec6d47017216add051edeed6b807440f5 (patch) | |
tree | 89c1863c116d6c0285877db97738a3c00f781679 /trunk | |
parent | a45a50fa80e8cab66516a8d280f52ae780aa64c3 (diff) | |
download | simplepkg-c198e50ec6d47017216add051edeed6b807440f5.tar.gz simplepkg-c198e50ec6d47017216add051edeed6b807440f5.tar.bz2 |
fixes
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@550 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'trunk')
-rw-r--r-- | trunk/lib/common.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/trunk/lib/common.sh b/trunk/lib/common.sh index ff92f45..944e39a 100644 --- a/trunk/lib/common.sh +++ b/trunk/lib/common.sh @@ -781,8 +781,8 @@ function update_md5_checksum { if [ -z "$2" ] || [ ! -d "$1" ] || [ ! -f "$1/$2" ]; then return 1 else - file="$1" - folder="$2" + file="$2" + folder="$1" fi CWD="`pwd`" |