mirror of
https://github.com/qishibo/AnotherRedisDesktopManager.git
synced 2026-01-18 16:12:43 +00:00
18 lines
357 B
Bash
Executable File
18 lines
357 B
Bash
Executable File
#! /bin/bash
|
|
|
|
FOLDER_PATH=`pwd`;
|
|
|
|
# cd ../../;
|
|
# npm run build;
|
|
|
|
# find dist -name '*.map'|xargs rm;
|
|
|
|
# cd dist;
|
|
# zip node_redis_linux.zip ./* -r;
|
|
|
|
sed "s:FOLDER_PATH:${FOLDER_PATH}:g" redis_manager_linux.desktop.example > redis_manager_linux.desktop
|
|
|
|
sudo cp redis_manager_linux.desktop /usr/share/applications/redis_manager_linux.desktop
|
|
|
|
echo 'done...'
|