mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-02 05:41:33 +02:00
f5ecc5ad85
Add bin/run wrapper to web GitOrigin-RevId: e324256fdca6b334d25385148e7517b4c4c5e702
9 lines
54 B
Bash
Executable File
9 lines
54 B
Bash
Executable File
#!/bin/bash
|
|
|
|
pushd ..
|
|
bin/run $*
|
|
RV=$?
|
|
popd
|
|
|
|
exit $RV
|