summaryrefslogtreecommitdiff
path: root/tools/outdir
blob: 3c51e35415ff655783387caa0923acca039adc17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

PRODUCTS=$HOME/Products

SRCDIR=$(pwd)
BASE=$(basename "$SRCDIR")

OUTPUT="$PRODUCTS/$BASE"

if [ -d "$OUTPUT" ]; then
    echo $OUTPUT
fi