Skip to content

Commit

Permalink
fix filename convetion
Browse files Browse the repository at this point in the history
  • Loading branch information
DvirDukhan committed Oct 1, 2023
1 parent e85c349 commit 5904fb8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions zip.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

# This script adds the file ./bin/rediscompat.so to the zip file with the pattern rediscompt-<Linux|macos>-<osnick>-<arch>.version.zip
# This script adds the file ./bin/rediscompat.so to the zip file with the pattern rediscompt.<Linux|macos>-<osnick>-<arch>.version.zip
version=1.0.0
# Get OS name and architecture
os=$(uname -s)
Expand Down Expand Up @@ -82,5 +82,5 @@ echo $OS_NICK
echo $arch

# Call zip and create the zip file
echo "Creating zip file ./bin/rediscompat-${os}-${OS_NICK}-${arch}.${version}.zip"
zip -j ./bin/rediscompat-${os}-${OS_NICK}-${arch}.${version}.zip ./bin/rediscompat.so
echo "Creating zip file ./bin/rediscompat.${os}-${OS_NICK}-${arch}.${version}.zip"
zip -j ./bin/rediscompat.${os}-${OS_NICK}-${arch}.${version}.zip ./bin/rediscompat.so

0 comments on commit 5904fb8

Please sign in to comment.