Skip to content

Latest commit

 

History

History
12 lines (12 loc) · 470 Bytes

linux-csharpworker-prefix-script.md

File metadata and controls

12 lines (12 loc) · 470 Bytes
#!/bin/sh
# ## assuming mono in path /opt/mono below. Update the path if needed ##
export PATH=$PATH:/opt/mono/bin
export PKG_CONFIG_PATH=/opt/mono/lib/pkgconfig
# ## uncomment one of the following lines depending on the mode of execution
# ## for Spark in YARN mode ##
#exec mono ./CSharpWorker.exe "$@"
# ## for Spark in local mode ##
# ## set the correct path to your application below ##
#exec mono /path/to/your/mobius/application/CSharpWorker.exe "$@"