Skip to content

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

Open
seancribbs wants to merge 1 commit intomasterfrom
update-apps-list
Open

Set the OTP apps for the PLT based on release version#24
seancribbs wants to merge 1 commit intomasterfrom
update-apps-list

Conversation

@seancribbs
Copy link
Copy Markdown
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
Copy Markdown
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