summaryrefslogtreecommitdiffstats
path: root/_testing/_get_files_arr.zsh
diff options
context:
space:
mode:
authorAilin Nemui2014-06-16 04:11:29 +0200
committerAilin Nemui2014-06-24 18:28:59 +0200
commitca374a4a1acec99b19486549071ef6c9968b749a (patch)
treeec4f7f7e66b423c392b5dbb46e424ec56a43247c /_testing/_get_files_arr.zsh
parent525b2128888f1e3ca2088a54cc086b102dbfe690 (diff)
downloadscripts.irssi.org-ca374a4a1acec99b19486549071ef6c9968b749a.tar.bz2
Add travis testing to Irssi scripts.
Diffstat (limited to '_testing/_get_files_arr.zsh')
-rw-r--r--_testing/_get_files_arr.zsh6
1 files changed, 6 insertions, 0 deletions
diff --git a/_testing/_get_files_arr.zsh b/_testing/_get_files_arr.zsh
new file mode 100644
index 0000000..6c8670e
--- /dev/null
+++ b/_testing/_get_files_arr.zsh
@@ -0,0 +1,6 @@
+if [[ $TRAVIS == true ]] {
+ . ./_testing/travis/_get_files_arr.zsh
+} \
+else {
+ filelist=($@)
+}