Zip script
This commit is contained in:
parent
5ed3016bfd
commit
8beef6a118
@ -379,7 +379,7 @@ public class LexAn implements AutoCloseable {
|
||||
|
||||
nextChar();
|
||||
if (buffChar != '\'') {
|
||||
throw new Report.Error(new Report.Location(startLocation, currentLocation()), "Unterminated character.");
|
||||
throw new Report.Error(new Report.Location(startLocation, currentLocation()), "Invalid character '" + (char) buffChar + "'.");
|
||||
}
|
||||
lexeme.append((char) buffChar);
|
||||
|
||||
|
8
zip.sh
Normal file
8
zip.sh
Normal file
@ -0,0 +1,8 @@
|
||||
#!/bin/bash
|
||||
|
||||
mkdir pins25
|
||||
rsync -av --exclude=".*" ./src ./pins25
|
||||
rsync -av --exclude=".*" --exclude="*.pins" ./prg ./pins25
|
||||
rm ./pins25/prg/*.pins
|
||||
zip -r 63230048.zip ./pins25
|
||||
rm -rf ./pins25
|
Loading…
x
Reference in New Issue
Block a user