Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scripts/protobuf-gen.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/protobuf-gen.sh b/scripts/protobuf-gen.sh
index 0c738f13a..25d2feaeb 100644
--- a/scripts/protobuf-gen.sh
+++ b/scripts/protobuf-gen.sh
@@ -1,15 +1,15 @@
#!/bin/bash
-# shellcheck disable=SC2013,SC1004
-
TR="y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/"
-for x in $(sed -n '/PB_AUTOGEN_START/,/PB_AUTOGEN_STOP/ {
+sed -n '/PB_AUTOGEN_START/,/PB_AUTOGEN_STOP/ {
/PB_AUTOGEN_ST/d;
+ /^[ \t]*$/d;
s/,.*$//;
s/\tPB_//;
p;
- }' criu/include/protobuf-desc.h); do
+ }' criu/include/protobuf-desc.h | \
+while IFS= read -r x; do
x_la=$(echo "$x" | sed $TR)
x_uf=$(echo "$x" | sed -nr 's/^./&#\\\
/;