Skip to content

Commit

Permalink
all: bump version to 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
89luca89 committed Dec 21, 2021
1 parent 577e1dc commit 68df9d2
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion distrobox-create
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ container_user_uid="$(id -ru)"
distrobox_entrypoint_path="$(command -v distrobox-init)"
distrobox_export_path="$(command -v distrobox-export)"
verbose=0
version="distrobox_version_placeholder"
version="1.2.2"

# Print usage to stdout.
# Arguments:
Expand Down
2 changes: 1 addition & 1 deletion distrobox-enter
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ container_command="$(basename "${container_command}") -l"
container_name="fedora-toolbox-35"
headless=0
verbose=0
version="distrobox_version_placeholder"
version="1.2.2"

# Print usage to stdout.
# Arguments:
Expand Down
2 changes: 1 addition & 1 deletion distrobox-export
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ exported_service=""
extra_flags=""
is_sudo=""
verbose=0
version="distrobox_version_placeholder"
version="1.2.2"

# We depend on some commands, let's be sure we have them
base_dependencies="basename grep sed find"
Expand Down
2 changes: 1 addition & 1 deletion distrobox-init
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ trap '[ "$?" -ne 0 ] && printf "Error: An error occurred\n"' EXIT

# Defaults
verbose=0
version="distrobox_version_placeholder"
version="1.2.2"

# Print usage to stdout.
# Arguments:
Expand Down
2 changes: 0 additions & 2 deletions install
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ if [ -f "${curr_dir}/distrobox-enter" ]; then
fi
for file in distrobox-*; do
cp "${file}" "${dest_path}"
sed -i "s/distrobox_version_placeholder/${release_ver}/g" "${dest_path}/${file}"
chmod 0755 "${dest_path}/${file}"
done
else
Expand All @@ -91,7 +90,6 @@ else
# deploy our files
for file in "distrobox-$(echo "${release_name}" | sed 's/.tar.gz//g')"/distrobox-*; do
cp "${file}" "${dest_path}"
sed -i "s/distrobox_version_placeholder/$(echo "${release_name}" | sed 's/.tar.gz//g')/g" "${dest_path}/$(basename "${file}")"
chmod 0755 "${dest_path}/$(basename "${file}")"
done

Expand Down

0 comments on commit 68df9d2

Please sign in to comment.