mirror of
https://github.com/helje5/dockSwiftOnARM.git
synced 2025-11-01 06:33:34 +00:00
16 lines
428 B
Bash
Executable File
16 lines
428 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DATEMARK="`date "+%Y%m%dT%H%M%S"`"
|
|
TARBALL="swift-checkout-${DATEMARK}.tar.bz2"
|
|
|
|
# this is huge and takes a long time!
|
|
#helge@ZeeMBP raspi (master)$ ls -ladh swift-checkout.tar.bz2
|
|
#-rw-r--r-- 1 helge staff 943M Apr 8 13:16 swift-checkout.tar.bz2
|
|
|
|
mkdir -p swift-checkout
|
|
cd swift-checkout
|
|
git clone https://github.com/apple/swift
|
|
./swift/utils/update-checkout --clone
|
|
cd ..
|
|
tar jcf ${TARBALL} swift-checkout
|