From f2862a5f8e7520b22db5915b058354f4a2b79859 Mon Sep 17 00:00:00 2001 From: Taylor Blau Date: Thu, 19 Jul 2018 13:16:26 -0500 Subject: [PATCH] script: remove unused script/run --- rpm/build_rpms.bsh | 3 --- script/run | 4 ---- 2 files changed, 7 deletions(-) delete mode 100755 script/run diff --git a/rpm/build_rpms.bsh b/rpm/build_rpms.bsh index 839b3e88..51dd9653 100755 --- a/rpm/build_rpms.bsh +++ b/rpm/build_rpms.bsh @@ -145,9 +145,6 @@ pushd ${CURDIR}/.. #(that yes, I could have gotten from git myself) LFS_VERSION=$(./bin/git-lfs version | sed -r 's|.*/([0-9.]*).*|\1|') sed -i 's|\(^Version:\s*\).*|\1'"${LFS_VERSION}"'|' ${CURDIR}/SPECS/git-lfs.spec - #LFS_SHA=$(git rev-parse --short HEAD) - #sed -i 's|\(^commit=*\).*|\1'"${LFS_SHA}"'|' ./script/run - #Not needed thanks to #549 popd #Prep the SOURCES dir for git-lfs diff --git a/script/run b/script/run deleted file mode 100755 index 0b825d7e..00000000 --- a/script/run +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -make fmt -commit=`git rev-parse --short HEAD` -GO15VENDOREXPERIMENT=1 go run -ldflags="-X github.com/git-lfs/git-lfs/config.GitCommit=$commit" ./git-lfs.go "$@"