mirror of
https://github.com/aseprite/aseprite.git
synced 2024-12-27 21:19:18 +00:00
8 lines
200 B
Bash
8 lines
200 B
Bash
|
#! /bin/bash
|
||
|
# Copyright (C) 2018 Igara Studio S.A.
|
||
|
|
||
|
if ! $ASEPRITE --version | grep "Aseprite 1\\." > /dev/null ; then
|
||
|
echo "FAILED: --version doesn't include 'Aseprite 1.' string"
|
||
|
exit 1
|
||
|
fi
|