Skip to content

Commit 60d1246

Browse files
committed
Not coping english again :)
1 parent 22b6983 commit 60d1246

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

scripts/build_linux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ fi
3232
make INSTALL_HDR_PATH=$TARGET/usr INSTALL_MOD_STRIP=1 headers_install
3333

3434
if [ "$LINUX_COPY_SRC_TO_TARGET" = "1" ]; then
35-
# Coping only required directories after modules_prepare is boring (what drivers/ are required universally for future expansion) and disk space is cheap, grab whole source
35+
# Copying only required directories after modules_prepare is boring (what drivers/ are required universally for future expansion) and disk space is cheap, grab whole source
3636
rsync --archive --delete --chmod=o-rwx "$LINUX_SRC/" "$TARGET/usr/src/$LINUX_VERSION/"
3737
# Cleanup not needed files from kernel source
3838
pushd "$TARGET/usr/src/$LINUX_VERSION"

scripts/ssh_install.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,23 +108,23 @@ function copy_to_nice_target() {
108108
notify "We need sudo for target copy"
109109

110110
echo "Filling $TARGET directory"
111-
echo "Coping usr/ directory"
111+
echo "Copying usr/ directory"
112112
rm -rf $TARGET/usr/
113113
sudo cp -a $VM_MOUNT_ROOT/usr/ $TARGET/
114114

115-
echo "Coping var/ directory"
115+
echo "Copying var/ directory"
116116
rm -rf $TARGET/var/
117117
sudo cp -a $VM_MOUNT_ROOT/var/ $TARGET/var/
118118

119119
if [ -r $VM_MOUNT_ROOT/etc/fonts/ ]; then
120-
echo "Coping fonts configs"
120+
echo "Copying fonts configs"
121121
rm -rf $TARGET/etc/fonts/
122122
mkdir -p $TARGET/etc/
123123
sudo cp -a $VM_MOUNT_ROOT/etc/fonts/ $TARGET/etc/
124124
fi
125125

126126
if [ -r $VM_MOUNT_ROOT/etc/alternatives/ ]; then
127-
echo "Coping /etc/alternatives/"
127+
echo "Copying /etc/alternatives/"
128128
rm -rf $TARGET/etc/alternatives/
129129
mkdir -p $TARGET/etc/
130130
sudo cp -a $VM_MOUNT_ROOT/etc/alternatives/ $TARGET/etc/

0 commit comments

Comments
 (0)