blob: da5afa03db9fdf88e7628f787d626d16c4abe479 [file] [log] [blame]
#!/bin/bash
#*******************************************************************************
# Copyright (c) 2018 Agence spatiale canadienne / Canadian Space Agency
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
# Pierre Allard,
# Regent L'Archeveque - initial API and implementation
#
# SPDX-License-Identifier: EPL-1.0
#*******************************************************************************
# FIXME Remove or use generic path.
LICENSE_FILE_LOCATION="/home/pallard/Apogy/LICENSE.md"
NOTICE_FILE_LOCATION="/home/pallard/Apogy/NOTICE.md"
CONRIBUTING_FILE_LOCATION="/home/pallard/Apogy/CONTRIBUTING.txt"
for f in *; do
if [[ -d $f ]]; then
echo $f
cp $LICENSE_FILE_LOCATION $f
cp $NOTICE_FILE_LOCATION $f
cp $CONRIBUTING_FILE_LOCATION $f
fi
done