Update cp line to remove redundant param
The use of -r for cp command is redundant with -a being used as documentation on Linux has -R and -r as the same parameter. The issue on Mac OS X is that it will error on about using -R and -r with cp. Change removes redundant -r from cp command. Change-Id: If7122efc8b84f8aa8a07fe4f8ee7568a048c9461
This commit is contained in:
parent
7940e0a611
commit
305cfa5e61
@ -68,7 +68,7 @@ install_all() {
|
|||||||
# When installing from local source, we want to install the current source
|
# When installing from local source, we want to install the current source
|
||||||
# we're working from.
|
# we're working from.
|
||||||
PUPPETFILE=${SCRIPT_DIR}/Puppetfile r10k puppetfile install -v
|
PUPPETFILE=${SCRIPT_DIR}/Puppetfile r10k puppetfile install -v
|
||||||
cp -ar ${SCRIPT_DIR} ${PUPPETFILE_DIR}/openstack_integration
|
cp -a ${SCRIPT_DIR} ${PUPPETFILE_DIR}/openstack_integration
|
||||||
}
|
}
|
||||||
|
|
||||||
# Install Puppet OpenStack modules and dependencies by using
|
# Install Puppet OpenStack modules and dependencies by using
|
||||||
|
Loading…
Reference in New Issue
Block a user