nomsu/tools/upgrade.nom

43 lines
1.2 KiB
Plaintext
Raw Normal View History

2018-08-30 14:16:09 -07:00
#!/usr/bin/env nomsu -V3.7.5.6
2018-07-23 15:54:27 -07:00
#
Tool to automatically update code from old versions of Nomsu. Usage:
nomsu tools/upgrade.nom [-i] file1 file2 directory1 ...
If "-i" is the first argument, upgrades will be performed in-place. Otherwise, the
upgraded code will be printed.
use "compatibility"
use "lib/os.nom"
%args = (command line args)
%inplace = (no)
if (%args.1 is "-i"):
%inplace = (yes)
%args::remove index 1
if (%args.1 is "-t"):
use "lib/consolecolor.nom"
%test = (yes)
%args::remove index 1
for %path in %args:
for file %filename in %path:
unless (%filename matches "%.nom$"): do next %filename
%tree = (parse (read file %filename) from %filename)
2018-07-20 20:18:14 -07:00
%uptree = (%tree upgraded)
%text = ".."
#!/usr/bin/env nomsu -V\(Nomsu version)
\(%uptree as nomsu)
if:
%inplace:
say "Upgraded \%filename"
write %text to file %filename
%test:
if (%uptree == %tree):
say (dim "\%filename will not be changed")
..else:
say (bright "\%filename will be changed")
else: say %text