From 04039bff96e7d2b669a3d7fb3bfcb27d55250f2d Mon Sep 17 00:00:00 2001 From: Braiden Vasco Date: Tue, 26 Sep 2017 08:34:59 +0000 Subject: [PATCH] Do not include date to image file name --- README.md | 2 +- run | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index aad4d32..c115de7 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Run `sudo ./run ./build.sh && sudo ./run ./mkimg.sh` to build the image. The following files will be created: * `rootfs/` - the root file system (`/` and `/boot/` partitions) -* `deploy/BarnacleOS-YYYY-MM-DD.img` - the image to write to SD card +* `deploy/BarnacleOS.img` - the image to write to SD card diff --git a/run b/run index c26b55a..17684bb 100755 --- a/run +++ b/run @@ -13,9 +13,7 @@ export ROOTFS_DIR="$BASE_DIR/rootfs" export KEYS_DIR="$BASE_DIR/keys" export FILES_DIR="$BASE_DIR/files" -export IMG_DATE="$(date +%Y-%m-%d)" - -export IMG_FILE="$DEPLOY_DIR/$IMG_NAME-${IMG_DATE}.img" +export IMG_FILE="$DEPLOY_DIR/$IMG_NAME.img" cd "$BASE_DIR"