8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5052fd0 commit 401e0bdCopy full SHA for 401e0bd
localizations/bitsafe/check_missing_lines
@@ -1,3 +1,8 @@
1
#!/bin/bash
2
3
+if [ -z "$1" ] || [ ! -e "$1" ]; then
4
+ echo "Example usage: ./check_missing_lines italian.po"
5
+ exit 2
6
+fi
7
+
8
diff -I "^#:" localization.po $1 | tail -n +30 | egrep "^<" | grep -v "msgstr \"\""
src/chroot_local-includes/usr/sbin/bitsafe-format-storage
@@ -103,7 +103,7 @@ else
103
fi
104
prstatus "$( printf "$MSG_FORMAT_MKPART" "$DRIVE" "$PART_BEGIN" "$PART_END" )"
105
parted /dev/$DRIVE mkpart primary $PART_BEGIN $PART_END || \
106
- critical_error "$MSG_FORMAT_PARTEDERR"
+ critical_error "$MSG_FORMAT_PARTEDERR" &>/dev/null
107
PART2_SIZE_BLOCKS=`cat /proc/partitions | grep -w "$DRIVE"2 | egrep -ow "[0-9]{4,15}"`
108
test -z "$PART2_SIZE_BLOCKS" && critical_error "$MSG_FORMAT_PARTNODEC"
109
0 commit comments