10 lines
87 B
Bash
Executable file
10 lines
87 B
Bash
Executable file
#!/bin/sh
|
|
|
|
. ./config
|
|
|
|
CWD=$PWD
|
|
|
|
cd $LFS
|
|
tar cvJpf $CWD/toolchain.tar.xz tools
|
|
|
|
exit 0
|