commit bc00434f542a69389f748cb6be75d0063a792b4c
parent 4479bc5437a7c42da3db005d10b61c6d87f47733
Author: hhvn <dev@hhvn.uk>
Date: Sun, 13 Jun 2021 11:31:27 +0100
datadir_upgrade: remove
Diffstat:
2 files changed, 0 insertions(+), 21 deletions(-)
diff --git a/datadir_upgrade/1.2 b/datadir_upgrade/1.2
@@ -1,19 +0,0 @@
-#!/bin/sh
-# vim: set syntax=sh :
-
-cwd=$(dirname $0 | sed 's~/[^/]*$~/~')
-. $cwd/include/userinfo.sh
-. $cwd/include/lock.sh
-. $cwd/config.sh
-
-for f in $(find $datadir/boards -name list)
-do
- lock $f
- awk -F" " '
- BEGIN {OFS="\t"}
- $5 == "_" {print $1, $2, $3, $4, "-->", $6, $7}
- $5 != "_"
- ' < $f > $f.new
- mv $f.new $f
- unlock $f
-done
diff --git a/datadir_upgrade/README b/datadir_upgrade/README
@@ -1,2 +0,0 @@
-Run the script named after the new version you just installed. If you have
-jumped a few versions, apply the scripts sequentially.