fork of https://github.com/rust-rocksdb/rust-rocksdb for nextgraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
829 B
28 lines
829 B
1 year ago
|
#! /usr/bin/env bash
|
||
|
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
||
|
|
||
|
set -e
|
||
|
set -o pipefail
|
||
|
|
||
|
if [ "$1" ]; then
|
||
|
# Target file specified on command line
|
||
|
TARGET="$1"
|
||
|
else
|
||
|
# Interactively choose a group and file name
|
||
|
DIRS="`find unreleased_history/ -mindepth 1 -maxdepth 1 -type d`"
|
||
|
echo "Choose a group for new release note:"
|
||
|
echo "$DIRS" | grep -nEo '[^/]+$'
|
||
|
echo -n "Enter a number: "
|
||
|
while [ ! "$DIRNUM" ]; do read -r DIRNUM; done
|
||
|
DIR="$(echo "$DIRS" | head -n "$DIRNUM" | tail -1)"
|
||
|
echo "Choose a file name for new release note (e.g. improved_whatever.md):"
|
||
|
while [ ! "$FNAME" ]; do read -re FNAME; done
|
||
|
# Replace spaces with underscores
|
||
|
TARGET="$(echo "$DIR/$FNAME" | tr ' ' '_')"
|
||
|
fi
|
||
|
|
||
|
# Edit/create the file
|
||
|
${EDITOR:-nano} "$TARGET"
|
||
|
# Add to version control (easy to forget!)
|
||
|
git add "$TARGET"
|