diff options
| author | Frank Fischer <frank.fischer@mathematik.tu-chemnitz.de> | 2012-06-05 20:58:05 +0200 |
|---|---|---|
| committer | Frank Fischer <frank.fischer@mathematik.tu-chemnitz.de> | 2012-06-05 20:58:05 +0200 |
| commit | f1c7a05494c7b09a5f37aa436678b3eeb4e4b2e9 (patch) | |
| tree | 945ac83450877041d23c171e01269261f7acf7f1 /Makefile | |
| parent | 8794b8c6c69a3611a4d6aab95dc208fdbd4824d3 (diff) | |
Fix update of version info
We dump the new version info to evil-pkg.el.new which is renamed
afterwards. Redirecting the output to the input file does not work and
results in an empty file.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -110,5 +110,5 @@ elpa: # Change the version using make VERSION=x.y.z version: - cat evil-pkg.el | sed "3s/\".*\"/\"${VERSION}\"/" > evil-pkg.el + cat evil-pkg.el | sed "3s/\".*\"/\"${VERSION}\"/" > evil-pkg.el.new && mv evil-pkg.el.new evil-pkg.el |
