packages: fixup script
This commit is contained in:
parent
91d8c45b54
commit
50fa4f9638
1 changed files with 5 additions and 5 deletions
|
@ -211,14 +211,14 @@ do
|
|||
done
|
||||
|
||||
cd "${CURRENT_DIR}"
|
||||
for encrypted_file in $(awk '{print $2}' ${TMPDIR}/${BASENAME}/${TMPFILE}); do
|
||||
rsync -rp -R "${encrypted_file}" "${TMPDIR}/${BASENAME}"
|
||||
done
|
||||
while read encrypted_file; do
|
||||
rsync -rp -R "${encrypted_file}" "${TMPDIR}/${BASENAME}"
|
||||
done < ${TMPDIR}/${BASENAME}/${TMPFILE}
|
||||
|
||||
cd "${TMPDIR}/${BASENAME}"
|
||||
for encrypted_file in $(awk '{print $2}' ${TMPFILE}); do
|
||||
while read encrypted_file; do
|
||||
git add "${encrypted_file}"
|
||||
done
|
||||
done < ${TMPDIR}/${BASENAME}/${TMPFILE}
|
||||
|
||||
git commit -m "New encrypted files" || true
|
||||
popd
|
||||
|
|
Loading…
Reference in a new issue