blob: 6663e51891534dc97cc6e24c63bb9c84c4a34847 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /usr/bin/env bash
# file : build/git/gitignore
# copyright : Copyright (c) 2004-2012 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
|