summary refs log tree commit diff
path: root/command.sh
blob: 333ca4417333614005e5a35c19f9f021ab2ac154 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -e -u

set $SSH_ORIGINAL_COMMAND
case $1 in
    view) exec view public/${2##*/} ;;
    ingest) exec ingest private/${2##*/} ;;
    *) exec view public/${1##*/} ;;
esac