mirror of
https://github.com/aseprite/aseprite.git
synced 2024-11-02 02:30:21 +00:00
8 lines
188 B
Bash
8 lines
188 B
Bash
|
#! /bin/bash
|
||
|
# Copyright (C) 2018 Igara Studio S.A.
|
||
|
|
||
|
if ! $ASEPRITE --help | grep "\\-\\-help" > /dev/null ; then
|
||
|
echo "FAILED: --help doesn't include usage information"
|
||
|
exit 1
|
||
|
fi
|