Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set the OTP apps for the PLT based on release version #24

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

seancribbs
Copy link
Collaborator

This was determined by checking the contents of the lib directory for each of
the first release tags in a particular major OTP version, roughly like below:

for v in {17..24}; do
  git ls-tree -r -d "OTP-${v}.0" lib | \
    awk -F/ '{ print $2 }' | \
    sort -u > ../OTP-$v.txt;
done

for v in {17..23}; do
  diff -u ../OTP-$v.txt ../OTP-$((v+1)).txt;
  echo;
done

This was determined by checking the contents of the `lib` directory for each of
the first release tags in a particular major OTP version, roughly like below:

    for v in {17..24}; do
      git ls-tree -r -d "OTP-${v}.0" lib | \
        awk -F/ '{ print $2 }' | \
        sort -u > ../OTP-$v.txt;
    done

    for v in {17..23}; do
      diff -u ../OTP-$v.txt ../OTP-$((v+1)).txt;
      echo;
    done
@zeeshanlakhani
Copy link
Collaborator

will double-check and run these checks too.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants