mirror of
https://github.com/i2p/i2p.firefox.git
synced 2024-12-06 19:16:37 +01:00
9 lines
277 B
Bash
Executable File
9 lines
277 B
Bash
Executable File
#! /usr/bin/env sh
|
|
|
|
SCRIPT_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd -P)/..
|
|
cd "$SCRIPT_DIR" || exit 1
|
|
|
|
find I2P -type d -exec chmod -v 755 {} \;
|
|
find I2P -type f -exec chmod -v +rw {} \;
|
|
find I2P -type d -exec chmod -v 755 {} \;
|
|
find I2P -type f -exec chmod -v +rw {} \; |