[Debian-l10n-commits] r1175 - in /ddtp-dinstall/trunk: Changelog checks/ddtp_i18n_check.sh

nekral-guest at users.alioth.debian.org nekral-guest at users.alioth.debian.org
Mon Aug 11 19:41:08 UTC 2008


Author: nekral-guest
Date: Mon Aug 11 19:41:08 2008
New Revision: 1175

URL: http://svn.debian.org/wsvn/?sc=1&rev=1175
Log:
	* checks/ddtp_i18n_check.sh: Added missing quotes.
	* checks/ddtp_i18n_check.sh: Fixed location of SHA256SUMS.

Modified:
    ddtp-dinstall/trunk/Changelog
    ddtp-dinstall/trunk/checks/ddtp_i18n_check.sh

Modified: ddtp-dinstall/trunk/Changelog
URL: http://svn.debian.org/wsvn/ddtp-dinstall/trunk/Changelog?rev=1175&op=diff
==============================================================================
--- ddtp-dinstall/trunk/Changelog (original)
+++ ddtp-dinstall/trunk/Changelog Mon Aug 11 19:41:08 2008
@@ -1,3 +1,8 @@
+2008-08-11  Nicolas François  <nicolas.francois at centraliens.net>
+
+	* checks/ddtp_i18n_check.sh: Added missing quotes.
+	* checks/ddtp_i18n_check.sh: Fixed location of SHA256SUMS.
+
 2008-08-11  Felipe Augusto van de Wiel  <faw at funlabs.org>
 
 	* checks/ddtp_i18n_check.sh: Added a temporary working directory, we

Modified: ddtp-dinstall/trunk/checks/ddtp_i18n_check.sh
URL: http://svn.debian.org/wsvn/ddtp-dinstall/trunk/checks/ddtp_i18n_check.sh?rev=1175&op=diff
==============================================================================
--- ddtp-dinstall/trunk/checks/ddtp_i18n_check.sh (original)
+++ ddtp-dinstall/trunk/checks/ddtp_i18n_check.sh Mon Aug 11 19:41:08 2008
@@ -257,13 +257,13 @@
 		exit 1
 	}
 }
-" $hvf_file || return 1
+" "$hvf_file" || return 1
 
 	return 0
 }
 
 # SHA256SUMS must exist
-if [ -f "$SHA256SUMS" ]; then
+if [ ! -f "$dists_parent_dir/$SHA256SUMS" ]; then
 	echo "SHA256SUMS ($SHA256SUMS) doesn't exist"
 	exit 1;
 fi
@@ -285,7 +285,7 @@
 cd "$OLDPWD"
 
 # Get the list of valid packages (sorted, uniq)
-for t in $TESTING $UNSTABLE; do
+for t in "$TESTING" "$UNSTABLE"; do
 	if [ ! -f "$PACKAGES_LISTS_DIR/$t" ]; then
 		echo "Missing $PACKAGES_LISTS_DIR/$t" >&2
 		exit 1




More information about the Debian-l10n-commits mailing list