From 6b2deb30f561cb6a3c6c678b0d171b694b50ad64 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Fri, 20 Jan 2012 00:57:24 -0500 Subject: Fix a syntax error (unterminated quoted string). --- (limited to 'src') diff --git a/src/opkbuild b/src/opkbuild index 16dfbc3..62f60ae 100644 --- a/src/opkbuild +++ b/src/opkbuild @@ -65,7 +65,7 @@ for binpkgdir in ../*.pkg/; do fi # TODO: Other compression formats, putting things in src/, ... binpkg=${binpkgdir#'../'} - binpkg=${binpkg%'.pkg/} + binpkg=${binpkg%'.pkg/'} # Build the package. ../build ${binpkg} # Clean up everything except the build stamps. -- cgit v0.9.1