mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-28 20:29:04 +03:00
9 lines
131 B
Bash
Executable File
9 lines
131 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [ "$1" != "" ]; then
|
|
~/npm/node_modules/prettier/bin-prettier.js --write --prose-wrap=always $1;
|
|
exit
|
|
fi
|