diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2013-09-13 16:08:00 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2013-09-13 16:08:00 +0200 |
commit | a0644d9c808b4d9ac8ff41352fbddcb3f2228e0a (patch) | |
tree | 7b713efc8e2000ea4ec3977a7218e9c96f25ded1 | |
parent | 880f3248e0dd842542349edf097771a89b7e7284 (diff) | |
download | vim-polyglot-a0644d9c808b4d9ac8ff41352fbddcb3f2228e0a.tar.gz vim-polyglot-a0644d9c808b4d9ac8ff41352fbddcb3f2228e0a.zip |
Convert zsh script to posix sh
-rwxr-xr-x | build | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -1,12 +1,11 @@ -#!/usr/bin/env zsh +#!/bin/sh set -E -setopt extended_glob -DIRS=( +DIRS=" syntax indent ftplugin ftdetect autoload compiler after/syntax after/indent after/ftplugin after/ftdetect -) +" copy_dir() { if [ -d "$1/$2" ]; then |