mirror of
https://github.com/wassname/openshift-celery-cartridge.git
synced 2026-07-09 00:20:19 +08:00
12 lines
205 B
Bash
Executable File
12 lines
205 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
# Mock cartridge for testing and verifying node platform code. This is
|
|
# not an example of how to write a well-formed cartridge.
|
|
|
|
case "$1" in
|
|
-v|--version)
|
|
version="$2"
|
|
esac
|
|
|
|
exit 0
|