mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
f5ecc5ad85
Add bin/run wrapper to web GitOrigin-RevId: e324256fdca6b334d25385148e7517b4c4c5e702
8 lines
54 B
Bash
Executable file
8 lines
54 B
Bash
Executable file
#!/bin/bash
|
|
|
|
pushd ..
|
|
bin/run $*
|
|
RV=$?
|
|
popd
|
|
|
|
exit $RV
|