Stop ignoring the bin folder
This commit is contained in:
parent
508676d9bd
commit
2b30a81496
2 changed files with 5 additions and 8 deletions
8
.gitignore
vendored
8
.gitignore
vendored
|
@ -1,11 +1,3 @@
|
|||
# eclipse
|
||||
bin
|
||||
*.launch
|
||||
.settings
|
||||
.metadata
|
||||
.classpath
|
||||
.project
|
||||
|
||||
# idea
|
||||
out
|
||||
*.ipr
|
||||
|
|
5
src/main/resources/assets/ajarc/bin/cat.js
Normal file
5
src/main/resources/assets/ajarc/bin/cat.js
Normal file
|
@ -0,0 +1,5 @@
|
|||
fs.writeFile("/test.txt", "long hard text file")
|
||||
var fileContent = fs.readFile(process.args[0])
|
||||
fileContent.split("\n").forEach(function (it) {
|
||||
screen.print(it)
|
||||
})
|
Loading…
Reference in a new issue