blob: a8828d72b7d1ca8c375182f8ab4a33b788ebd75c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#! /usr/bin/env bash
# file : build/git/gitignore
# author : Boris Kolpackov <boris@codesynthesis.com>
# copyright : Copyright (c) 2004-2010 Code Synthesis Tools CC
# license : GNU GPL v2; see accompanying LICENSE file
echo '# Generated .gitignore file; do not edit or version control.'
echo '#'
for f in "$@"; do
echo $f
done
|