diff options
author | Pascal Terjan <pterjan@mageia.org> | 2023-01-30 20:48:45 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mageia.org> | 2023-01-30 20:48:45 +0000 |
commit | c44235ae36864fde784a1c461966e0d4f0a86258 (patch) | |
tree | ee5687edb468e6e6b13d384cc0315008eedf0c24 | |
parent | 62d180e54b9d273d785006deff4333aadd5c61df (diff) | |
download | iurt-0.8.2.1.tar iurt-0.8.2.1.tar.gz iurt-0.8.2.1.tar.bz2 iurt-0.8.2.1.tar.xz iurt-0.8.2.1.zip |
Fix syntax checks to use local tree0.8.2.1
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | NEWS | 3 | ||||
-rwxr-xr-x | iurt | 2 |
3 files changed, 7 insertions, 4 deletions
@@ -30,7 +30,7 @@ TESTS = $(wildcard t/*.t) .PHONY: $(TESTS) $(TESTS): perl -Ilib $@ - perl -c ulri - perl -c iurt - perl -c emi + perl -Ilib -c ulri + perl -Ilib -c iurt + perl -Ilib -c emi check: $(TESTS) @@ -1,3 +1,6 @@ +0.8.2.1 +- Fix syntax checks to use local tree + 0.8.2 - Add some tests checking the syntax of iurt/ulri/emi as the main scripts are not covered by test. @@ -324,7 +324,7 @@ plog_init($program_name, $run{logfd} || $LOG, 7, 1); # For parsing command line # Display version information # -my $version = '0.8.2'; +my $version = '0.8.2.1'; plog("MSG", "This is iurt version $version"); my $todo = parseCommandLine($program_name, \@ARGV, \@params); |